home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_081 / icon / addendum next >
Text File  |  1992-05-06  |  2KB  |  69 lines

  1. Last Minute Addendums to Amiga.DOC
  2. ==================================
  3.  
  4. On a 512k Amiga you will sometimes find that Icon programs report an
  5. insufficient memory in startup code.  There are two cures for this:
  6.  
  7.     1) Make certain that you have *nothing* in the ram disk.
  8.        Also, make certain that you are not multi-tasking - for example,
  9.        leaving a copy of the editor you are using running.
  10.  
  11.     2) The startup-code consumes a certain amount of memory.  You can
  12.        sometimes run programs using
  13.  
  14.         1> Iconx Prog
  15.  
  16.        That would not run as simply
  17.  
  18.         1> Prog
  19.  
  20.     3) If both of these options fail to work, then you need to
  21.        buy, borrow, or steal more memory.
  22.  
  23. _________________________
  24. STACK
  25.  
  26.     It is important to allow sufficient stack - at least 20000, and,
  27.     for some applications, more.
  28.  
  29. __________________________
  30. MAXMEM
  31.  
  32.     On a 512k amiga, you may have trouble loading the IEEE library.
  33.     One solution to this is to set MAXMEM= to a sufficiently small
  34.     amount to allow the program to run and the IEEE library to be
  35.     loaded.  This will not happen with more memory.
  36.  
  37. _________________________
  38. Startup-scripts:
  39.  
  40.     Here is a sample startup-script that does assigns and such for you.
  41.     It assumes that you have located the four files, Icont, Iconx, ITran
  42.     and ILink in SYS:IconV6/Bin, and the header file ixhdr in SYS:IconV6/sysexe.
  43.  
  44. ________________++++++++++ CUT HERE +++++++++++++++=================_____________
  45. Echo ""
  46. Echo "Hello!"
  47. Echo "             Welcome to AMIGA ICON, V6.001"
  48. Echo ""
  49.  
  50. Assign ICONT: IconV6/bin
  51. Assign ITRAN: IconV6/bin
  52. Assign ILINK: IconV6/bin
  53. Assign ICONX: IconV6/bin
  54. Assign HEAD: IconV6/sysexe
  55.  
  56. Set UFILES=RAM:
  57. Set MAXMEM=300
  58. Set IPATH=SYS:!SYS:ICONV6!SYS:ICONV6/Examples
  59.  
  60. Path add IconV6/bin
  61. Stack 20000
  62. Stack
  63. cd IconV6
  64. Echo "Current directory = SYS:IconV6"
  65. Echo ""
  66.  
  67. Prompt "Icon-%N! "
  68.  
  69.